home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / go / prog / sgf2mi13.taz / sgf2mi13 / sysdep.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-27  |  1.1 KB  |  39 lines

  1. /* #[info:            */
  2. /************************************************************************
  3.  *                                    *
  4.  *         ####    #   #   ####   #####   ######  #####        *
  5.  *        #         # #   #       #    #  #       #    #        *
  6.  *         ####      #     ####   #    #  #####   #    #        *
  7.  *             #     #         #  #    #  #       #####        *
  8.  *        #    #     #    #    #  #    #  #       #            *
  9.  *         ####      #     ####   #####   ######  #            *
  10.  *                                    *
  11.  *                Jan van der Steen                *
  12.  *                                    *
  13.  *          Centre for Mathematics and Computer Science        *
  14.  *              Amsterdam, the Netherlands            *
  15.  *                                    *
  16.  *----------------------------------------------------------------------*
  17.  * File      : sysdep.h                         *
  18.  * Purpose : Configure the system dependant constants            *
  19.  * Version : 1.1                         *
  20.  * Modified: 11/9/92 16:53:18                        *
  21.  * Author  : Jan van der Steen (jansteen@cwi.nl)             *
  22.  ************************************************************************/
  23. /* #]info:            */
  24.  
  25. #ifndef SYSDEPH
  26. #define SYSDEPH
  27.  
  28. /* #[define:            */
  29.  
  30. #if __unix || unix || UNIX
  31. #define PATHSEP '/'
  32. #else
  33. #define PATHSEP '\\'
  34. #endif
  35.  
  36. /* #]define:            */
  37.  
  38. #endif
  39.